Resolves a driver by name within an organization via voice sign-in, then creates a driver-vehicle assignment via the Driver Assignment Service.
Rate limit: 100 requests/min (learn more about rate limits here).
To use this endpoint, select Write Assignments under the Assignments category when creating or editing an API token. Learn More.
Submit Feedback: Likes, dislikes, and API feature requests should be filed as feedback in our API feedback form. If you encountered an issue or noticed inaccuracies in the API documentation, please submit a case to our support team.
curl --request POST \
--url https://api.samsara.com/fleet/drivers/voice-sign-in/resolve-assignment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"driverName": "Jane Doe",
"vehicleId": "281474978683353"
}
'{
"data": {
"driverId": "1234567",
"driverName": "Jane Doe"
}
}Documentation Index
Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Created response.
Response body containing the resolved driver information.
Show child attributes
curl --request POST \
--url https://api.samsara.com/fleet/drivers/voice-sign-in/resolve-assignment \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"driverName": "Jane Doe",
"vehicleId": "281474978683353"
}
'{
"data": {
"driverId": "1234567",
"driverName": "Jane Doe"
}
}